home *** CD-ROM | disk | FTP | other *** search
/ BCI NET 2 / BCI NET 2.iso / archives / telecomm / misc / userinfo.lha / UserInfo / rexx / UserInfoRexx.spot < prev   
Encoding:
Text File  |  1995-02-14  |  506 b   |  24 lines

  1. /*
  2. ** UserInfo ARexx script v1.0 for Spot
  3. ** By Kasper B. Graversen
  4. */
  5.  
  6. address spot
  7.  
  8. 'ismessages'
  9. if rc = 5 then do
  10.    'requestnotify "Use in message window only!"'
  11.    exit
  12.    end
  13.  
  14. saveascii 'T:UserInfo.temp' OVERWRITE NOHEADER NOKLUDGES
  15.  
  16. address command 'c:userinfo' 'read' 's:userinfo.cfg' 't:UserInfo.temp' 't:UserInfo.txt'
  17. address command 'c:most' 't:UserInfo.txt' 'PUBSCREEN' '"SPOT"'
  18.  
  19. address command 'c:delete' 't:UserInfo.temp' '>nil:'
  20. address command 'c:delete' 't:UserInfo.txt' '>nil:'
  21.  
  22. return
  23.  
  24.